home *** CD-ROM | disk | FTP | other *** search
- INCLUDE MODEL.INC
- ;
- ;---------------------------------------------------------------------------
- ; Function: int _bye_baud()
- ;
- ; Parms: void
- ;
- ; Purpose: Returns the baud rate of the caller on line.
- ;
- ; Return: 0 = 300 bps
- ; 1 = 1200 bps
- ; 2 = 2400 bps
- ;---------------------------------------------------------------------------
- ;
- PUBLIC __bye_baud
-
- __bye_baud PROC
-
- mov ah,7 ;AH=7 for get baud rate
- int BYE_VECT
- ret
-
- __bye_baud ENDP
- END
-